home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000222_news@newsmaster….columbia.edu _Fri Feb 13 09:50:14 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA20260
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 13 Feb 1998 09:50:14 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA29022
  7.     for kermit.misc@watsun; Fri, 13 Feb 1998 09:50:13 -0500 (EST)
  8. Path: news.columbia.edu!not-for-mail
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: even parity in telnet?
  12. Date: 13 Feb 1998 09:50:10 -0500
  13. Organization: Columbia University
  14. Lines: 37
  15. Message-ID: <6c1mj2$jp0@watsun.cc.columbia.edu>
  16. References: <34E3B36A.DB443A52@fractal.eng.yale.edu>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8408
  19.  
  20. In article <34E3B36A.DB443A52@fractal.eng.yale.edu>,
  21. Richard Chen  <chen@fractal.eng.yale.edu> wrote:
  22. :     The script ckepage.scr for paging  works
  23. : great for modems directly attached to a machine. Now
  24. : we have a situation where we have to telnet to a remote
  25. : access device, login with passwd and then get the
  26. : control of the modem (meaning AT commands work).
  27. : The device uses a pool of us robotics modems.
  28. :    The problem is I don't know where to set the even parity. The set speed
  29. : command does not work either because it is a telnet connection, not a
  30. : serial port.  TAP protocol requires 7E1, xon/xoff and low connection speed
  31. : (2400 or lower). xon/xoff can be controlled by at&k4, speed by
  32. : atS37=3. But I don't find any settings for parity control.
  33. :    My question is how can I set parity to even in such a telnet
  34. : connection. I had tried stty parenb -parodd cs7 before launching
  35. : kermit. This did not work.
  36. : Maybe kermit is not the right tool in this kind of situation?
  37. Let's consider the common situation of a modem connected to a terminal
  38. server.  How is Kermit supposed to set the speed or parity of a serial port
  39. on a terminal server?  These are configuration parameters of the terminal
  40. server.  There is no way to access them except from the command console of
  41. the terminal server, which is normally accessible only to its owner or
  42. manager, and is normally password protected.
  43.  
  44. If you need to send alpha pages, you won't be able to share the modem in
  45. this way, because, as you point out, it must be set up in a special way for
  46. dialing the paging service, but the sharing mechanism does not allow this.
  47.  
  48. So either the modem must be dedicated to and configured for paging on the
  49. terminal server, or else it should be moved to a regular computer, where
  50. Kermit can control its speed and parity, etc.
  51.  
  52. - Frank